home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mailnews.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  66 lines

  1.  
  2. #
  3. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(10641);
  11.  script_bugtraq_id(2391);
  12.  script_cve_id("CAN-2001-0271");
  13.  
  14.  script_version ("$Revision: 1.11 $");
  15.  name["english"] = "mailnews.cgi";
  16.  name["francais"] = "mailnews.cgi";
  17.  script_name(english:name["english"], francais:name["francais"]);
  18.  
  19.  desc["english"] = "The 'mailnews' cgi is installed. This CGI has
  20. a well known security flaw that lets an attacker execute arbitrary
  21. commands with the privileges of the http daemon (usually root or nobody).
  22.  
  23. Solution : remove it from /cgi-bin.
  24.  
  25. Risk factor : High";
  26.  
  27.  
  28.  desc["francais"] = "Le cgi 'mailnews' est installΘ. Celui-ci possΦde
  29. un problΦme de sΘcuritΘ bien connu qui permet α n'importe qui de faire
  30. executer des commandes arbitraires au daemon http, avec les privilΦges
  31. de celui-ci (root ou nobody). 
  32.  
  33. Solution : retirez-le de /cgi-bin.
  34.  
  35. Facteur de risque : SΘrieux";
  36.  
  37.  
  38.  script_description(english:desc["english"], francais:desc["francais"]);
  39.  
  40.  summary["english"] = "Checks for the presence of mailnews.cgi";
  41.  summary["francais"] = "VΘrifie la prΘsence de mailnews.cgi";
  42.  
  43.  script_summary(english:summary["english"], francais:summary["francais"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2001 Renaud Deraison",
  49.         francais:"Ce script est Copyright (C) 2001 Renaud Deraison");
  50.  family["english"] = "CGI abuses";
  51.  family["francais"] = "Abus de CGI";
  52.  script_family(english:family["english"], francais:family["francais"]);
  53.  script_dependencie("find_service.nes", "no404.nasl");
  54.  script_require_ports("Services/www", 80);
  55.  
  56.  exit(0);
  57. }
  58.  
  59. include("http_func.inc");
  60. include("http_keepalive.inc");
  61. port = get_http_port(default:80);
  62.  
  63. res = is_cgi_installed_ka(item:"mailnews.cgi", port:port);
  64. if(res)
  65.  security_warning(port);
  66.